|
|
|
|
OnLayout Method, SftTabs Class |
Raises the Layout event.
Syntax SftTabs Class (Softelvdm.SftTabsNET)
VB |
Protected Overrides Sub OnLayout( ByVal e As LayoutEventArgs ) |
C# |
protected override void OnLayout( LayoutEventArgs e ); |
C++ |
protected: virtual void OnLayout( LayoutEventArgs^ e ); |
e
A LayoutEventArgs that contains the event data.
Comments
The OnLayout method raises the Layout event.
Raising an event invokes the event handler through a delegate.
The OnLayout method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.
When overriding OnLayout in a derived class, make sure to call the base class's OnLayout method so that registered delegates receive the event.